home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 426-450 / disk_443 / dice / dice.lzh / include / lib / misc.h < prev    next >
C/C++ Source or Header  |  1991-01-13  |  1KB  |  45 lines

  1.  
  2. /*
  3.  *  LIB/MISC.H
  4.  *
  5.  *  miscellanious prototypes for internal c.lib functions
  6.  */
  7.  
  8. #ifndef _LIB_MISC_H
  9. #define _LIB_MISC_H
  10. #ifndef _STDARG_H
  11. #include <stdarg.h>
  12. #endif
  13. #ifndef _STDIO_H
  14. #include <stdio.h>
  15. #endif
  16.  
  17. void __closeall(void);
  18. void _finitdesc(FILE *, int, int);
  19. int _parseargs1(char *, int);
  20. void _parseargs2(char *, char **, int);
  21. long _SearchResident(char *);
  22. long _SearchPath(char *);
  23. __stkargs long _ExecSeg(long, char *, long, void *);
  24. int exec_dcc(char *, char *);
  25. int _pfmt(char *, va_list, int (*)(char *, int, int, void *), void *);
  26. int _pfmtone(char, va_list *, int (*)(char *, int, int, void *), void *, short, short, short, int);
  27. int _sfmt(unsigned char *, va_list, int (*)(void *), void (*)(int, void *), void *, int *);
  28. int _sfmtone(char, short *, void *, int (*)(void *), void *, short, short, short);
  29. int __fclose(FILE *);
  30. int _filbuf(FILE *);
  31.  
  32. __stkargs _slow_bcopy(void *, void *, long);
  33. __stkargs _slow_bzero(void *, long);
  34. __stkargs _slow_bset(void *, long, int);
  35.  
  36. #ifndef _EXTRA_WILDCARD_C
  37. void _SetWildStack(long);
  38. void *_ParseWild(const char *, short);
  39. int _CompWild(const char *, void *, void *);
  40. void _FreeWild(void *);
  41. #endif
  42.  
  43.  
  44. #endif
  45.